'DeclarationPublic Overloads Overrides Function CreateDecryptor( _ ByVal rgbKey() As Byte, _ ByVal rgbIV() As Byte _ ) As ICryptoTransform
'UsageDim instance As NoEncryptionAlgorithm Dim rgbKey() As Byte Dim rgbIV() As Byte Dim value As ICryptoTransform value = instance.CreateDecryptor(rgbKey, rgbIV)
public override ICryptoTransform CreateDecryptor( byte[] rgbKey, byte[] rgbIV )
Parameters
- rgbKey
- The secret key to use for the symmetric algorithm.
- rgbIV
- The initialization vector to use for the symmetric algorithm.
Return Value
A symmetric decryptor object.